home *** CD-ROM | disk | FTP | other *** search
/ Computer Arts Interactive 4 / CARTS4.iso / mac / MiniCad 6.0.1 demo / MiniCad 6.0.1 Demo / MiniCad 6.0.1 Demo.rsrc / STR#_7021.txt < prev    next >
Text File  |  1996-03-22  |  4KB  |  137 lines

  1. Deletes the object connected to h.
  2.  
  3. DelObject(h:HANDLE);
  4.  
  5. Deletes the symbol connected to h from a wall object.
  6.  
  7. DeleteWallSym(h:HANDLE);
  8.  
  9. Adds peak to wall connected to h.
  10.  
  11. AddWallPeak(h:HANDLE;Distance,Height:REAL);
  12.  
  13. Adds symbol to wall connected to h.
  14.  
  15. AddSymToWall(h:HANDLE;Name:STRING;Distance,Height:REAL);
  16.  
  17. Sets the start and end height of the wall connected to h.
  18.  
  19. HWallHeight(h:HANDLE;Start,End:REAL);
  20.  
  21. Sets the width of the wall connected to h.
  22.  
  23. HWallWidth(h:HANDLE;Width:REAL);
  24.  
  25. Rotates the object connected to h about (X,Y).
  26.  
  27. HRotate(h:HANDLE;X,Y,Angle:REAL);
  28.  
  29. Offsets object connected to h specified distance from current position.
  30.  
  31. HMove(h : HANDLE; XOff,YOff : REAL);
  32.  
  33. Sets the text justification of the string connected to h.
  34.  
  35. SetTextJust(h:HANDLE;Just:INTEGER);
  36.  
  37. Sets the text size of the string connected to h.
  38.  
  39. SetTextSize(h:HANDLE;Start,Count,Size:INTEGER);
  40.  
  41. Sets the style of the string connected to h.
  42.  
  43. SetTextStyle(h:HANDLE;Start,Count,Style:INTEGER);
  44.  
  45. Sets the font of the string connected to h.
  46.  
  47. SetTextFont(h:HANDLE;Start,Count,FontNum:INTEGER);
  48.  
  49. Changes the text of a text object that is connected to h.
  50.  
  51. SetText(h : Handle; s : STRING);
  52.  
  53. Closes the worksheet connected to h.
  54.  
  55. CloseSS(h:HANDLE);
  56.  
  57. Activates the spreadsheet that is connected by h.
  58.  
  59. SelectSS(h : Handle);
  60.  
  61. Moves a 3D object connected to h by dX, dY, dZ.
  62.  
  63. Move3DObj(h : Handle;  dX, dY, dZ : REAL);
  64.  
  65. Changes the height, width, depth of a 3D object that is connected to h.
  66.  
  67. Set3DInfo(h : Handle;  height, width, depth : REAL);
  68.  
  69. Rotates a 3D object that is connected to h by the amount specified by #x, #y, #z around the point specified by xCenter, yCenter, zCenter.
  70.  
  71. Set3DRot(h : Handle;  #x, #y, #z, xCenter, yCenter, zCenter : REAL);
  72.  
  73. Changes the start and arc angles of the arc that is connected to h.
  74.  
  75. SetArc(h : Handle;  #startAngle, #arcAngle : REAL);
  76.  
  77. Changes the location of the polygonΓÇÖs indexΓÇÖth vertex to the new location specified by x, y.
  78.  
  79. SetPolyPt(h : Handle; index : INTEGER;  x, y : REAL);
  80.  
  81. Changes the second end point of a line connected to h to the new location specified by x, y.
  82.  
  83. SetSegPt2(h : Handle; x, y : REAL);
  84.  
  85. Changes the first end point of a line connected to h to the new location specified by x, y.
  86.  
  87. SetSegPt1(h : Handle; x, y : REAL);
  88.  
  89. Assigns the specified fill background color to the object that is connected to h.
  90.  
  91. SetFillBack(h : Handle; red, green, blue : LONGINT);
  92.  
  93. Assigns the specified fill foreground color to the object that is connected to h.
  94.  
  95. SetFillFore(h : Handle; red, green, blue : LONGINT);
  96.  
  97. Assigns the specified pen background color to the object that is connected to h.
  98.  
  99. SetPenBack(h : Handle; red, green, blue : LONGINT);
  100.  
  101. Assigns the specified pen foreground color to the object that is connected to h.
  102.  
  103. SetPenFore(h : Handle; red, green, blue : LONGINT);
  104.  
  105. Assigns the specified bounding box coordinates x1, y1, x2, y2 to the object that is connected to h.
  106.  
  107. SetBBox(h : Handle; x1, y1, x2, y2 : REAL);
  108.  
  109. Assigns the specified line style to the object that is connected to h.
  110.  
  111. SetLS(h : Handle; lineStyle : INTEGER);
  112.  
  113. Assigns the specified line weight to the object that is connected to h.
  114.  
  115. SetLW(h : Handle;  lineWeight : INTEGER);
  116.  
  117. Assigns the specified fill pattern to the object that is connected to h.
  118.  
  119. SetFPat(h : Handle; fillPattern : INTEGER);
  120.  
  121. Assigns the specified class to the object that is connected to h.
  122.  
  123. SetClass(h : Handle; class : STRING);
  124.  
  125. Assigns the specified name to the object that is connected to h.
  126.  
  127. SetName(h : Handle; name : STRING);
  128.  
  129. Deselects the object that is connected to h.
  130.  
  131. SetDSelect(h : Handle);
  132.  
  133. Selects the object that is connected to h.
  134.  
  135. SetSelect(h : Handle);
  136.  
  137.